home *** CD-ROM | disk | FTP | other *** search
/ CD World Haziran 1997 / CD World Haziran 1997.iso / Internet ve Net Programlari / WebSite WEB Server Evaluation / WebSite WEB Server evaluation version. 32 bit Windows required.Z / DEMOINDX.BA_ / DEMOINDX.BA
Encoding:
Text File  |  1995-02-20  |  805 b   |  34 lines

  1. rem
  2. rem ****************
  3. rem * DEMOINDX.BAT *
  4. rem ****************
  5. rem
  6. rem Offers an ISINDEX document if no query arguments, 
  7. rem else reports on the "results" of the query.
  8. rem
  9. rem Bob Denny (rdenny@netcom.com)
  10. rem 20-Feb-95
  11. rem
  12. set of=%output_file%
  13. if NOT "%1"=="" goto shoquery
  14. rem
  15. rem No query, signal server to do redirect to ISINDEX demo doc.
  16. rem
  17. echo Location: /wsdocs/32demo/isindex.html > %of%
  18. echo. >> %of%
  19. goto done
  20. rem
  21. rem There were query arguments. Generate plain text report (COMMAND.COM: BAH!)
  22. rem
  23. :shoquery
  24. echo Content-type:text/plain > %of%
  25. echo. >> %of%
  26. echo Here is what the server would have fed to the CGI search program: >> %of%
  27. echo. >> %of%
  28. echo Arguments: >> %of%
  29. echo %1 %2 %3 %4 %5 %6 %7 %8 %9 >> %of%
  30. :done
  31. echo -- end of report -- >> %of%
  32.  
  33.  
  34.